CODE

employes = {
            "id01": {"prenom": "Paul", "nom": "Dupont", "age": 32},
            "id02": {"prenom": "Julie", "nom": "Dupuit", "age": 25},
            "id03": {"prenom": "Patrick", "nom": "Ferrand", "age": 36}
            }
            
del employes["id03"]
employes["id02"]["age"] = 26
age_paul = employes["id01"]["age"]

POINTS IMPORTANTS  RETENIR